home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 July / EnigmA AMIGA RUN 20 (1997)(G.R. Edizioni)(IT)[!][issue 1997-07 & 08][EAR-CD IV].iso / lightwave / lwmlist / 96.lightwave-0422 / 000517_dwarner@webcom.com _Sat Apr 27 03:40:56 1996.msg < prev    next >
Internet Message Format  |  1996-05-03  |  2KB

  1. Received: from e55.webcom.com (e55.webcom.com [206.2.192.66]) by keeper.albany.net (8.7.5/8.7.5-MZ) with ESMTP id DAA10832 for <DWARNER@ALBANY.NET>; Sat, 27 Apr 1996 03:40:55 -0400 (EDT)
  2. Received: from localhost by e55.webcom.com with SMTP
  3.     (1.37.109.15/16.2) id AA212540801; Sat, 27 Apr 1996 00:40:01 -0700
  4. Date: Sat, 27 Apr 1996 00:40:01 -0700
  5. Errors-To: dwarner@ALBANY.NET
  6. Message-Id: <Pine.SUN.3.93.960427021820.8005H-100000@access1.digex.net>
  7. Errors-To: dwarner@ALBANY.NET
  8. Reply-To: lightwave@garcia.com
  9. Originator: lightwave@garcia.com
  10. Sender: lightwave@garcia.com
  11. Precedence: bulk
  12. From: Ernie Wright <erniew@access.digex.net>
  13. To: Multiple recipients of list <lightwave@garcia.com>
  14. Subject: Re: Recording to VHS
  15. X-Listprocessor-Version: 6.0c -- ListProcessor by Anastasios Kotsikonas
  16. Status: RO
  17. X-Status: 
  18.  
  19. Adrian Onsen wrote:
  20.  
  21. > Why is that? Why can't NTSC handle 24 bit color? Why are values over
  22. > 200 RGB, considered illegal?
  23.  
  24. They're not.  A white of (255,255,255) is fine, for example.  But some
  25. parts of the RGB cube are illegal.  Given the YIQ components of an NTSC
  26. signal, the amplitude in IRE is
  27.  
  28.    a = 7.5 + 92.5 * ( y + sqrt( i * i + q * q ))
  29.  
  30. and the signal is illegal (overmodulated) when a > 110 or thereabouts.
  31. This happens for fully saturated yellow and cyan.
  32.  
  33. > And since computers came after the development of TV, why did computers
  34. > adopt a ystem (RGB) of encoding data which is not compatible with the
  35. > current video signal?
  36.  
  37. They didn't.  What's inside both the camera and the TV is RGB.  NTSC
  38. is just the lossy compression method used to transmit the signal.
  39.  
  40. > Why not make e computer have it's value for 255 rgb, be the actual
  41. > limit of NTSC signals?
  42.  
  43. It is.  Most encoders set maximum white (255,255,255) at 100 IRE, the
  44. maximum NTSC luminance level.
  45.  
  46. - Ernie
  47.  
  48.  
  49. P.S.:  To convert from RGB to YIQ,
  50.  
  51.    #define GAMMA(x) (((x)<5) ? 4.5*(x)  \
  52.                              : 1.099 * pow((x)/255.0, 1/2.2) - 0.099)
  53.    r = GAMMA( red );
  54.    g = GAMMA( green );
  55.    b = GAMMA( blue );
  56.    y = 0.2989 * r + 0.5866 * g + 0.1144 * b;
  57.    i = 0.5959 * r - 0.2741 * g - 0.3218 * b;
  58.    q = 0.2113 * r - 0.5227 * g + 0.3113 * b;